Platform Explorer / Nuxeo Platform 2025.7

Component org.nuxeo.ecm.automation.server.marshallers

Resolution Order

54
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.

Contributions

XML Source

<component name="org.nuxeo.ecm.automation.server.marshallers">
  <!-- this is needed by JsonOperationWriter -->
  <extension point="marshallers" target="org.nuxeo.ecm.automation.server.AutomationServer">
    <marshaller>
      <reader>org.nuxeo.ecm.automation.io.rest.operations.JsonRequestReader</reader>
      <reader>org.nuxeo.ecm.automation.io.rest.operations.UrlEncodedFormRequestReader</reader>
      <reader>org.nuxeo.ecm.automation.io.rest.documents.BusinessAdapterReader</reader>
      <writer>org.nuxeo.ecm.automation.io.rest.operations.JsonAutomationInfoWriter</writer>
      <writer>org.nuxeo.ecm.automation.io.rest.JsonLoginInfoWriter</writer>
      <writer>org.nuxeo.ecm.automation.io.rest.operations.JsonOperationWriter</writer>
      <writer>org.nuxeo.ecm.automation.io.rest.operations.JsonHtmlOperationWriter</writer>
      <writer>org.nuxeo.ecm.automation.io.rest.JsonTreeWriter</writer>
      <writer>org.nuxeo.ecm.automation.io.rest.JsonAdapterWriter</writer>
      <writer>org.nuxeo.ecm.automation.io.rest.JsonRecordSetWriter</writer>
      <!-- delegates marshalling to nuxeo-core-io MarshallerRegistry service -->
      <writer>org.nuxeo.ecm.webengine.rest.coreiodelegate.CoreIODelegate</writer>
    </marshaller>
  </extension>
</component>